home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1996 September & October / Amiga-CD 1996 #9-10.iso / ausgabe_9_96 / kommunikation / voodoo / rexx / sendvoodoo.bed < prev    next >
Text File  |  1996-03-11  |  351b  |  17 lines

  1. /*
  2.  * Deliver message when using Blacks Editor as an external
  3.  * editor for Voodoo.
  4.  *
  5.  */
  6.  
  7. options results
  8.  
  9. SaveFile QUIET NOBACKUP NOICON        /* Save message */
  10.  
  11. GetFilePath FILE            /* Get filename only */
  12. message="T:"result            /* Attach T: as path to filename */
  13.  
  14. address VOODOO 'SEND' message        /* Send to Voodoo */
  15. Quit QUIET                /* Quit out of BED */
  16.  
  17.